PerformSearchRequest

data class PerformSearchRequest(query: String, includeUserAgentShadowDOM: Boolean?)

Represents request frame that can be used with DOM#performSearch operation call.

Searches for a given string in the DOM tree. Use getSearchResults to access search results or cancelSearch to end this search session.

See also

Constructors

PerformSearchRequest
Link copied to clipboard
fun PerformSearchRequest(query: String, includeUserAgentShadowDOM: Boolean? = null)

Properties

includeUserAgentShadowDOM
Link copied to clipboard
val includeUserAgentShadowDOM: Boolean? = null
True to search in user agent shadow DOM.
query
Link copied to clipboard
val query: String
Plain text or query selector or XPath search query.

Sources

jvm source
Link copied to clipboard